Modifying the donation page

You can customize the donation page for specific purposes by modifying the Gift.aspx page properties. For example, you can change the eligible distributions, the messages displayed, or the types of payment accepted.

In a typical installation, the Gift.aspx page is located in the local directory for the iMIS application: c:\Program Files\ASI\iMIS\iMIS_public\Core\Donations\Gift.aspx. You can also use a url to see the file: http://[servername]/imispublic/Core/Donations/Gift.aspx.

Note: Be sure to change the default values of EmailSmtpHost and EmailFromAddress to values specific to your organization. If your SMTP server requires authentication, then you must also include values for the EmailSmtpLoginId and EmailSmtpLoginPassword properties in your Gift.aspx page.

The following Gift.aspx page has been modified for land trust donations.

<%@ Register TagPrefix="uc1" TagName="GiftUserControl" Src="Gift.ascx" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TemplateBody" runat="server">

   <uc1:GiftUserControl runat="server" ID="GiftUserControl1"

 GiftPanelTitle="Invest in our community - make a donation now!"

        ContactPanelTitle="Donor Information"   

        PaymentPanelTitle="Payment Method"

        SummaryPanelTitle="Thank you!"

        SuggestedGiftAmounts="25,50,100,250,500"

        DistributionMessage="to the following:"        

        EligibleDistributions="BLDG,GEN"

        KnownUserMessage= "Hello, {0}! Your donation will help to make our community facilities and housing affordable for the people who live and work in our town. Please select a gift amount:"

        UnknownUserMessage="Welcome! Your donation will help to make our community facilities and housing affordable for the people who live and work in our town. Please select a gift amount:"

        CreditDebitCardCashAccountPrefix="W_"

        SubmitButtonText="Submit my donation now"

        RequiredFieldDescription="*  Indicates a required field"

        ProcessedSuccessfullyMessage="Your donation will help us to preserve our community. Thank you for your gift."

        EmailSmtpHost="yourmailservr.yourdomain"

        EmailSmtpPort="25"

        EmailSmtpLoginId="youremail@yourhost.yourdomain"

        EmailSmtpLoginPassword="yourpassword"

        EmailFromAddress="youremail@yourhost.yourdomain"

        EmailConfirmationSubject="Thank you for your donation"

        EmailConfirmationAddressPrompt="Send confirmation email to:" />

 

</asp:Content>